"NAME"="AOE: Age of Kings: The Conquerors Expansion Tweaks #1"
"LANGUAGE"="VBScript"
"VERSION"="1.00"
"TEXT 1"="Enable Tweaks"
"TEXT 2"="Restore Default Settings"
"DESCRIPTION 1"="Click "Enable Tweaks" to activate the "MFill NoStartup Msynch" tweaks in AOE games played over the Internet via the Internet Gaming Zone."
"DESCRIPTION 2"="Click "Restore Default Settings" to undo the changes and revert to the default configuration."
"DESCRIPTION 3"=" "
"DESCRIPTION 4"=""MFill" fixes and prevents horizontal line problems and black screen areas on some video cards. "MSynch" fixes lock-up problems that occur on some soundcards."
"DESCRIPTION 5"=""NoStartUp" skips the start up video clip which becomes annoying since it opens each time by default."
"DESCRIPTION 6"="If you wish for these items to work for non Internet Gaming Zone AOE games, you must manually add the options to your Start Menu shortcut per the AOE ReadMe file."
"AUTHOR"="Xteq Systems (CptSiskoX)"
"CONTACTURL"="http://www.xteq.com/"
"COPYRIGHT"="Copyright (C) Xteq Systems - All Rights Reserved"
"COMMENT 1"=" "
"COMMENT 2"="Age of Empires (C) by Microsoft"
sP="HKLM\Software\Microsoft\DirectPlay\Applications\Age of Empires II - The Conquerors Expansion\"
sV="CommandLine" 'str
sV_Better="lobby MFill NoStartup Msynch"
sV_Normal="lobby"
'Called when the Plugin is started
SUB Plugin_Initialize
If RegPathExists(sP)=false then Disable()
END SUB
'Called when the Plugin should validate the Data the user has entered
SUB Plugin_CheckData(ElementIndex)
END SUB
'Called when the Plugin should apply the changes
SUB Plugin_Apply(ElementIndex,ElementSubIndex)
If ElementIndex=1 then
Call RegWriteValue(sP & sV,sV_Better,1)
Call MsgInformation("Tweaks enabled")
else
Call RegWriteValue(sP & sV,sV_Normal,1)
Call MsgInformation("Default settings restored")
end if
END SUB
'Called when the Plugin is about to be removed from memory